
virtual DWORD GetLength() const; throws (CFileException); 

CString CFile::GetFileName() const
CString CFile::GetFileTitle() const
CString CFile::GetFilePath() const



BOOL CFile::GetStatus(CFileStatus  & rStatus) const; 

rStatusڷļϢ
stuct CFileStatus
{
	CTime  m_ctime;                   // ļʱ
	CTime  m_mtime;                   // ļһ޸ĵʱ
	CTime m_atime;                    // һηļȡʱ
	LONG m_size;                      // ļ߼ȣֽʾ
	BYTE m_attribute;                 // ļֽ
	TCHAR m_szFullName[MAX_PATH]; 	  // Windowsַʾȫļ
};

m_attributeԱļ
	enum Attribute
	{
		normal=0x00,	// һ
		readOnly=0x01,	// ֻ
		hidden=0x02,	// 
		system=0x04,	// ϵͳ	
		volume=0x08,	//  
		directory=0x10,	// Ŀ¼
		archive=0x20	// 鵵
	};
